Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@babel/runtime
Advanced tools
The @babel/runtime package is a library that includes Babel modular runtime helpers and a version of regenerator-runtime. It is used to avoid polluting the global scope and to reduce the size of the compiled output by deduplicating helper functions that are commonly used by Babel-transpiled code. It is particularly useful when building libraries or applications that need to be optimized for size and scope isolation.
Modularized Helpers
This feature allows you to use Babel's helper functions in a modular way, without including them in every file that needs them, thus reducing redundancy and file size.
import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
class MyClass {
constructor() {
_classCallCheck(this, MyClass);
// class body
}
}
Regenerator Runtime
Includes a version of the regenerator runtime to enable the use of async/await and generator functions in environments that do not natively support them.
import 'regenerator-runtime/runtime';
async function asyncCall() {
await someAsyncFunction();
}
Similar to @babel/runtime, core-js is a modular standard library for JavaScript, which includes polyfills for ECMAScript features. It is often used in conjunction with Babel to ensure that newer language features will work in older environments. It is more comprehensive than @babel/runtime but can lead to larger bundle sizes if not used carefully.
tslib is a runtime library for TypeScript that includes helper functions similar to those in @babel/runtime. It is used to support features from TypeScript such as async/await, spread operators, and others without duplicating code. It is specific to TypeScript, whereas @babel/runtime is used with Babel and can be used with JavaScript or TypeScript.
babel's modular runtime helpers
See our website @babel/runtime for more information.
Using npm:
npm install --save @babel/runtime
or using yarn:
yarn add @babel/runtime
FAQs
babel's modular runtime helpers
The npm package @babel/runtime receives a total of 42,643,703 weekly downloads. As such, @babel/runtime popularity was classified as popular.
We found that @babel/runtime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.